home *** CD-ROM | disk | FTP | other *** search
/ Business & Presentations / Business and Presentations - Volume 1 (1995)(Sideface)(NL).iso / gfxapps / dos / viewfont / viewfont.doc < prev    next >
Text File  |  1989-08-24  |  2KB  |  67 lines

  1.  ViewFont.C    Version 1.3       Copyright (c) 1989 Jim Bumgardner
  2.  
  3.  First Release (Version 1.2)    11-08-88
  4.  
  5.  Onscreen FONT Viewer for Turbo C (Uses Turbo C Graphics).
  6.  Latest Version may be found on CooperWorks (608-271-3685).
  7.  
  8.  ViewFont C allows you to preview a font on the screen (if you have
  9.  graphics).  I use ViewFont in conjunction with FONTFILT (FNTFLT20.ARC),
  10.  to view transformed fonts.  It makes font manipulations a lot easier
  11.  and prevents me from wasting paper.
  12.  
  13.  ViewFont works with the Turbo C graphics drivers, and is linked
  14.  with a Hercules, CGA and EGAVGA driver.  If you have some other graphics
  15.  system, you will need the corresponding .BGI driver.
  16.  
  17.  ViewFont displays as many characters on the screen as it can fit.
  18.  It positions each one correctly using the left_offset and top_offset
  19.  information in the character header.
  20.  
  21.  Use the arrow keys to see other letters, or type the character that
  22.  you want to see.  Hit ESC or CTRL-C quit.
  23.  
  24.  
  25.  Second Release (Version 1.3)  8/25/89
  26.  
  27.  Fixes first release to correctly display fonts on EGA (and hopefully
  28.  VGA) screens.  Also adds information about the characters by drawing
  29.  left line, right line, and baseline for each.  These fully describe
  30.  the size of the character.
  31.  
  32.  Now included (in addition to the C source) is the (Turbo) assembly 
  33.  source for the EGA character output routine and its object code
  34.  (for those without Turbo Assembler.)  
  35.  
  36. **********************************************************************/
  37.  
  38.  
  39.  You may also be interested in FONTFILT.  
  40.  
  41.  
  42.  
  43. FONTFILT Version 2.0                 Copyright (c) 1988  Jim Bumgardner
  44.  
  45.  
  46. Contents of this Archive (FNTFLT20.ARC):
  47.  
  48.     FONTFILT.EXE    Font Filter Program
  49.     FNTFLT20.DOC    This File.
  50.     FONTFILT.C    Source Code
  51.  
  52. The latest version of FONTFILT (FNTFLTXX) can be found at CooperWorks 
  53. 1-608-271-3685.
  54.  
  55.  
  56. About the Program
  57. ------------------
  58. FONTFILT.EXE can perform 11 different transformations on HP Laserjet Fonts.
  59.  
  60. It is meant to replace the individual filters (MAKESHAD.EXE,
  61. MAKEHOLL.EXE etc.) distributed in FONTFILT.ARC, FONTFLT2.ARC and
  62. XFNTFILT.ARC.  All the effects available in those programs may be done
  63. by the program FONTFILT.EXE in this archive.  The program is faster,
  64. and there are no size limitations.
  65.  
  66.  
  67.